home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / utime.h < prev   
Text File  |  1992-09-18  |  144b  |  14 lines

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. #include "ThinkCPosix.h"
  6.  
  7. struct utimbuf {
  8.     time_t actime;
  9.     time_t modtime;
  10. };
  11.  
  12. int utime(char*, struct utimbuf*);
  13.  
  14.